home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / show / SView460.lha / SuperViewEL / Install_SuperView < prev    next >
Text File  |  1995-05-25  |  3KB  |  105 lines

  1. ; $VER: Install_SuperView.script V4.43 (17.1.95)
  2. ; © 1993-95 by Andreas R. Kleinert.
  3. ; This is the Installer Script for SuperView
  4.  
  5. (set selectlang (askchoice
  6.                    (prompt "")
  7.                    (help @askchoice-help)
  8.                    (choices "Deutsche Installation" "English Installation")
  9.                    (default 1)
  10.                  )
  11. )
  12.  
  13. (if (= selectlang 0)
  14.  ; IF
  15.  (set @language "deutsch")
  16.  ; ELSE
  17.  (set @language "english")
  18. )
  19.  
  20. (if (= @language "deutsch")
  21.  
  22. ; IF so, set german texts
  23.   (
  24.     (set MSG_wrong_OS       (cat "Sie benötigen mindestens OS V2.04 für SuperView !\n\n"
  25.                                  "SuperView wird auf Ihrem System nicht laufen !"))
  26.     (set MSG_InstallingSuperView "Installiere jetzt SuperView. Die Libraries müssen separat installiert werden !")
  27.     (set MSG_SelectPath          "Wählen Sie das Zielverzeichnis für SuperView")
  28.     (set MSG_InstallingCatalogs  "Installiere jetzt die Katalog-Dateien für die\nOS V2.1+ Sprach-Unterstützung.")
  29.     (set MSG_SelectCatalogPath   "Wählen Sie den Pfad für die Katalog-Dateien")
  30.   )
  31. ; ELSE set english texts
  32.   (
  33.     (set MSG_wrong_OS       (cat "You need at least OS V2.04 to run SuperView !\n\n"
  34.                                  "SuperView will not run with your system configuration !"))
  35.     (set MSG_InstallingSuperView "Installing SuperView now. Libraries have to be installed separately !")
  36.     (set MSG_SelectPath          "Select path to install SuperView to")
  37.     (set MSG_InstallingCatalogs  "Installing Catalog-Files for OS V2.1+\nCode localization.")
  38.     (set MSG_SelectCatalogPath   "Select path to install Catalogs to")
  39.   )
  40. )
  41.  
  42. (set OS_VER (/ (getversion) 65536) )
  43.  
  44. (if(< OS_VER 37)
  45.   (abort MSG_wrong_OS)
  46. )
  47.  
  48. (complete 0)
  49.  
  50.  
  51. (set iconset (askchoice
  52.                    (prompt "")
  53.                    (help @askchoice-help)
  54.                    (choices "IconSet 1 (default)" "IconSet 2")
  55.                    (default 0)
  56.                  )
  57. )
  58.  
  59. (if (= iconset 1)
  60.   (
  61.     run( "LHA -xarm -b64 x IconSet2.LHA /")
  62.   )
  63. )
  64.  
  65. (complete 5)
  66.  
  67. (copyfiles
  68.   (prompt MSG_Installing)
  69.   (help @copyfiles-help)
  70.   (source "")
  71.   (set svcomdir
  72.               (askdir
  73.                      (prompt MSG_SelectPath)
  74.                      (help @askdir-help)
  75.                      (newpath)
  76.                      (default "SYS:SuperView")
  77.               )
  78.   )
  79.   (dest svcomdir)
  80.   (all)
  81.   (confirm)
  82. )
  83.  
  84. (complete 70)
  85.  
  86. (copyfiles
  87.   (prompt MSG_InstallingCatalogs)
  88.   (help @copyfiles-help)
  89.   (source "locale/catalogs")
  90.   (set svcomdir
  91.               (askdir
  92.                      (prompt MSG_SelectCatalogPath)
  93.                      (help @askdir-help)
  94.                      (newpath)
  95.                      (default "SYS:locale/Catalogs")
  96.               )
  97.   )
  98.   (dest svcomdir)
  99.   (all)
  100.   (confirm)
  101. )
  102.  
  103.  
  104. (complete 100)
  105.